home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 January / PCWorld_2003-01_cd.bin / Software / Vyzkuste / rychlokurz / httrack.exe / {app} / src / httrack.c < prev    next >
C/C++ Source or Header  |  2002-11-17  |  19KB  |  601 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: htsshow.c console progress info                        */
  34. /* Only used on Linux version                                   */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #ifdef _WIN32
  39. #include <windows.h>
  40. #include <winbase.h>
  41. #else
  42. #ifndef Sleep
  43. #define Sleep(a) { if (((a)*1000)%1000000) usleep(((a)*1000)%1000000); if (((a)*1000)/1000000) sleep(((a)*1000)/1000000); }
  44. #endif
  45. #endif
  46.  
  47. #include "htsglobal.h"
  48. #include "httrack.h"
  49.  
  50. // htswrap_add
  51. #include "htswrap.h"
  52.  
  53. #if HTS_ANALYSTE_CONSOLE
  54.  
  55. /* specific definitions */
  56. #include "htsbase.h"
  57. #include <stdio.h>
  58. #include <stdlib.h>
  59. #include <string.h>
  60. #include <ctype.h>
  61. #ifdef _WIN32
  62. #include "Winsock.h"
  63. #endif
  64. /* END specific definitions */
  65.  
  66. // ISO VT100/220 definitions
  67. #define VT_COL_TEXT_BLACK    "30"
  68. #define VT_COL_TEXT_RED      "31"
  69. #define VT_COL_TEXT_GREEN    "32"
  70. #define VT_COL_TEXT_YELLOW   "33"
  71. #define VT_COL_TEXT_BLUE     "34"
  72. #define VT_COL_TEXT_MAGENTA  "35"
  73. #define VT_COL_TEXT_CYAN     "36"
  74. #define VT_COL_TEXT_WHITE    "37"
  75. #define VT_COL_BACK_BLACK    "40"
  76. #define VT_COL_BACK_RED      "41"
  77. #define VT_COL_BACK_GREEN    "42"
  78. #define VT_COL_BACK_YELLOW   "43"
  79. #define VT_COL_BACK_BLUE     "44"
  80. #define VT_COL_BACK_MAGENTA  "45"
  81. #define VT_COL_BACK_CYAN     "46"
  82. #define VT_COL_BACK_WHITE    "47"
  83. //
  84. #define VT_GOTOXY(X,Y)  "\33["Y";"X"f"
  85. #define VT_COLOR(C)     "\33["C"m"
  86. #define VT_RESET        "\33[m"
  87. #define VT_REVERSE      "\33[7m"
  88. #define VT_UNREVERSE    "\33[27m"
  89. #define VT_BOLD         "\33[1m"
  90. #define VT_UNBOLD       "\33[22m"
  91. #define VT_BLINK        "\33[5m"
  92. #define VT_UNBLINK      "\33[25m"
  93. //
  94. #define VT_CLREOL       "\33[K"
  95. #define VT_CLRSOL       "\33[1K"
  96. #define VT_CLRLIN       "\33[2K"
  97. #define VT_CLREOS       "\33[J"
  98. #define VT_CLRSOS       "\33[1J"
  99. #define VT_CLRSCR       "\33[2J"
  100. //
  101. #define csi(X)          printf(s_csi( X ));
  102. void vt_clear(void) {
  103.   printf("%s%s%s",VT_RESET,VT_CLRSCR,VT_GOTOXY("1","0"));
  104. }
  105. void vt_home(void) {
  106.   printf("%s%s",VT_RESET,VT_GOTOXY("1","0"));
  107. }
  108. //
  109.  
  110.  
  111. /*
  112. #define STYLE_STATVALUES VT_COLOR(VT_COL_TEXT_BLACK)
  113. #define STYLE_STATTEXT   VT_COLOR(VT_COL_TEXT_BLUE)   
  114. */
  115. #define STYLE_STATVALUES VT_BOLD
  116. #define STYLE_STATTEXT   VT_UNBOLD
  117. #define STYLE_STATRESET  VT_UNBOLD
  118. #define NStatsBuffer     14
  119. #define MAX_LEN_INPROGRESS 40
  120.  
  121. static int use_show;
  122.  
  123. int main(int argc, char **argv) {
  124.   hts_init();
  125.  
  126.   /*
  127.   hts_htmlcheck_init         = (t_hts_htmlcheck_init)           htswrap_read("init");
  128. Log: "engine: init"
  129.  
  130.   hts_htmlcheck_uninit       = (t_hts_htmlcheck_uninit)         htswrap_read("free");
  131. Log: "engine: free"
  132.  
  133.   hts_htmlcheck_start        = (t_hts_htmlcheck_start)          htswrap_read("start");
  134. Log: "engine: start"
  135.  
  136.   hts_htmlcheck_end          = (t_hts_htmlcheck_end)            htswrap_read("end");
  137. Log: "engine: end"
  138.  
  139.   hts_htmlcheck_chopt        = (t_hts_htmlcheck_chopt)          htswrap_read("change-options");
  140. Log: "engine: change-options"
  141.  
  142.   hts_htmlcheck              = (t_hts_htmlcheck)                htswrap_read("check-html");
  143. Log: "check-html: <url>"
  144.  
  145.   hts_htmlcheck_query        = (t_hts_htmlcheck_query)          htswrap_read("query");
  146.   hts_htmlcheck_query2       = (t_hts_htmlcheck_query2)         htswrap_read("query2");
  147.   hts_htmlcheck_query3       = (t_hts_htmlcheck_query3)         htswrap_read("query3");
  148.   hts_htmlcheck_loop         = (t_hts_htmlcheck_loop)           htswrap_read("loop");
  149.   hts_htmlcheck_check        = (t_hts_htmlcheck_check)          htswrap_read("check-link");
  150. Log: none
  151.  
  152.   hts_htmlcheck_pause        = (t_hts_htmlcheck_pause)          htswrap_read("pause");
  153. Log: "pause: <lockfile>"
  154.  
  155.   hts_htmlcheck_filesave     = (t_hts_htmlcheck_filesave)       htswrap_read("save-file");
  156.   hts_htmlcheck_linkdetected = (t_hts_htmlcheck_linkdetected)   htswrap_read("link-detected");
  157. Log: none
  158.  
  159.   hts_htmlcheck_xfrstatus    = (t_hts_htmlcheck_xfrstatus)      htswrap_read("transfer-status");
  160. Log: 
  161.     "engine: transfer-status: link updated: <url> -> <file>"
  162.   | "engine: transfer-status: link added: <url> -> <file>"
  163.   | "engine: transfer-status: link recorded: <url> -> <file>"
  164.   | "engine: transfer-status: link link error (<errno>, '<err_msg>'): <url>"
  165.   hts_htmlcheck_savename     = (t_hts_htmlcheck_savename  )     htswrap_read("save-name");
  166. Log: 
  167.     "engine: save-name: local name: <url> -> <file>"
  168. */
  169.   
  170.   htswrap_add("init",htsshow_init);
  171.   htswrap_add("free",htsshow_uninit);
  172.   htswrap_add("start",htsshow_start);
  173.   htswrap_add("change-options",htsshow_chopt);
  174.   htswrap_add("end",htsshow_end);
  175.   htswrap_add("check-html",htsshow_checkhtml);
  176.   htswrap_add("loop",htsshow_loop);
  177.   htswrap_add("query",htsshow_query);
  178.   htswrap_add("query2",htsshow_query2);
  179.   htswrap_add("query3",htsshow_query3);
  180.   htswrap_add("check-link",htsshow_check);
  181.   htswrap_add("pause",htsshow_pause);
  182.   htswrap_add("save-file",htsshow_filesave);
  183.   htswrap_add("link-detected",htsshow_linkdetected);
  184.   htswrap_add("transfer-status",htsshow_xfrstatus);
  185.   htswrap_add("save-name",htsshow_savename);
  186.  
  187.   return hts_main(argc,argv);
  188. }
  189.  
  190.  
  191. /* CALLBACK FUNCTIONS */
  192.  
  193. /* Initialize the Winsock */
  194. void __cdecl htsshow_init(void) {
  195. #ifdef _WIN32
  196.   {
  197.     WORD   wVersionRequested;   // requested version WinSock API
  198.     WSADATA wsadata;            // Windows Sockets API data
  199.     int stat;
  200.     wVersionRequested = 0x0101;
  201.     stat = WSAStartup( wVersionRequested, &wsadata );
  202.     if (stat != 0) {
  203.       printf("Winsock not found!\n");
  204.       return;
  205.     } else if (LOBYTE(wsadata.wVersion) != 1  && HIBYTE(wsadata.wVersion) != 1) {
  206.       printf("WINSOCK.DLL does not support version 1.1\n");
  207.       WSACleanup();
  208.       return;
  209.     }
  210.   }
  211. #endif
  212.  
  213. }
  214. void __cdecl htsshow_uninit(void) {
  215. #ifdef _WIN32
  216.   WSACleanup();
  217. #endif
  218. }
  219. int __cdecl htsshow_start(httrackp* opt) {
  220.   use_show=0;
  221.   if (opt->verbosedisplay==2) {
  222.     use_show=1;
  223.     vt_clear();
  224.   }
  225.   return 1; 
  226. }
  227. int __cdecl htsshow_chopt(httrackp* opt) {
  228.   return htsshow_start(opt);
  229. }
  230. int  __cdecl htsshow_end(void) { 
  231.   return 1; 
  232. }
  233. int __cdecl htsshow_checkhtml(char* html,int len,char* url_adresse,char* url_fichier) {
  234.   return 1;
  235. }
  236. int __cdecl htsshow_loop(lien_back* back,int back_max,int back_index,int lien_n,int lien_tot,int stat_time, hts_stat_struct* stats) {    // appelΘ α chaque boucle de HTTrack
  237.   static TStamp prev_mytime=0; /* ok */
  238.   static t_InpInfo SInfo; /* ok */
  239.   //
  240.   TStamp mytime;
  241.   long int rate=0;
  242.   char st[256];
  243.   //
  244.   int stat_written=-1;
  245.   int stat_updated=-1;
  246.   int stat_errors=-1;
  247.   int stat_warnings=-1;
  248.   int stat_infos=-1;
  249.   int nbk=-1;
  250.   LLint nb=-1;
  251.   int stat_nsocket=-1;
  252.   LLint stat_bytes=-1;
  253.   LLint stat_bytes_recv=-1;
  254.   int irate=-1;
  255.   if (stats) {
  256.     stat_written=stats->stat_files;
  257.     stat_updated=stats->stat_updated_files;
  258.     stat_errors=stats->stat_errors;
  259.     stat_warnings=stats->stat_warnings;
  260.     stat_infos=stats->stat_infos;
  261.     nbk=stats->nbk;
  262.     stat_nsocket=stats->stat_nsocket;
  263.     irate=(int)stats->rate;
  264.     nb=stats->nb;
  265.     stat_bytes=stats->nb;
  266.     stat_bytes_recv=stats->HTS_TOTAL_RECV;
  267.   }
  268.  
  269.   if (!use_show)
  270.     return 1;
  271.  
  272.   mytime=mtime_local();
  273.   if ((stat_time>0) && (stat_bytes_recv>0))
  274.     rate=(int)(stat_bytes_recv/stat_time);
  275.   else
  276.     rate=0;    // pas d'infos
  277.  
  278.   /* Infos */
  279.   if (stat_bytes>=0) SInfo.stat_bytes=stat_bytes;      // bytes
  280.   if (stat_time>=0) SInfo.stat_time=stat_time;         // time
  281.   if (lien_tot>=0) SInfo.lien_tot=lien_tot; // nb liens
  282.   if (lien_n>=0) SInfo.lien_n=lien_n;       // scanned
  283.   SInfo.stat_nsocket=stat_nsocket;          // socks
  284.   if (rate>0)  SInfo.rate=rate;                // rate
  285.   if (irate>=0) SInfo.irate=irate;             // irate
  286.   if (SInfo.irate<0) SInfo.irate=SInfo.rate;
  287.   if (SInfo.stat_back>=0) SInfo.stat_back=nbk;
  288.   if (stat_written>=0) SInfo.stat_written=stat_written;
  289.   if (stat_updated>=0) SInfo.stat_updated=stat_updated;
  290.   if (stat_errors>=0)  SInfo.stat_errors=stat_errors;
  291.   if (stat_warnings>=0)  SInfo.stat_warnings=stat_warnings;
  292.   if (stat_infos>=0)  SInfo.stat_infos=stat_infos;
  293.  
  294.  
  295.   if ( ((mytime - prev_mytime)>100) || ((mytime - prev_mytime)<0) ) {
  296.     prev_mytime=mytime;
  297.  
  298.     
  299.     st[0]='\0';
  300.     qsec2str(st,stat_time);
  301.     vt_home();
  302.     printf(
  303.     VT_GOTOXY("1","1")
  304.     VT_CLREOL
  305.                            STYLE_STATTEXT   "Bytes saved:"
  306.                            STYLE_STATVALUES " \t%s"
  307.                            "\t"
  308.     VT_CLREOL
  309.     VT_GOTOXY("40","1")
  310.                            STYLE_STATTEXT   "Links scanned:"
  311.                            STYLE_STATVALUES " \t%d/%d (+%d)"
  312.     VT_CLREOL"\n"VT_CLREOL
  313.     VT_GOTOXY("1","2")
  314.                            STYLE_STATTEXT   "Time:"
  315.                                             " \t"
  316.                            STYLE_STATVALUES "%s"
  317.                            "\t"
  318.     VT_CLREOL
  319.     VT_GOTOXY("40","2")
  320.                            STYLE_STATTEXT   "Files written:"
  321.                                             " \t"
  322.                            STYLE_STATVALUES "%d"
  323.     VT_CLREOL"\n"VT_CLREOL
  324.     VT_GOTOXY("1","3")
  325.                            STYLE_STATTEXT   "Transfer rate:"
  326.                                             " \t"
  327.                            STYLE_STATVALUES "%s (%s)"
  328.                            "\t"
  329.     VT_CLREOL
  330.     VT_GOTOXY("40","3")
  331.                            STYLE_STATTEXT   "Files updated:"
  332.                                             " \t"
  333.                            STYLE_STATVALUES "%d"
  334.     VT_CLREOL"\n"VT_CLREOL
  335.     VT_GOTOXY("1","4")
  336.                            STYLE_STATTEXT   "Active connections:"
  337.                                             " \t"
  338.                            STYLE_STATVALUES "%d"
  339.                            "\t"
  340.     VT_CLREOL
  341.     VT_GOTOXY("40","4")
  342.                            STYLE_STATTEXT   "Errors:"
  343.                            STYLE_STATVALUES " \t"
  344.                            STYLE_STATVALUES "%d"
  345.     VT_CLREOL"\n"
  346.     STYLE_STATRESET
  347.     ,
  348.       /* */
  349.       (char*)int2bytes(SInfo.stat_bytes),
  350.       (int)lien_n,(int)SInfo.lien_tot,(int)nbk,
  351.       (char*)st,
  352.       (int)SInfo.stat_written,
  353.       (char*)int2bytessec(SInfo.irate),(char*)int2bytessec(SInfo.rate),
  354.       (int)SInfo.stat_updated,
  355.       (int)SInfo.stat_nsocket,
  356.       (int)SInfo.stat_errors
  357.       /* */
  358.       );
  359.  
  360.     
  361.     // parcourir registre des liens
  362.     if (back_index>=0) {  // seulement si index passΘ
  363.       int j,k;
  364.       int index=0;
  365.       int ok=0;         // idem
  366.       int l;            // idem
  367.       //
  368.       t_StatsBuffer StatsBuffer[NStatsBuffer];
  369.       
  370.       {
  371.         int i;
  372.         for(i=0;i<NStatsBuffer;i++) {
  373.           strcpybuff(StatsBuffer[i].state,"");
  374.           strcpybuff(StatsBuffer[i].name,"");
  375.           strcpybuff(StatsBuffer[i].file,"");
  376.           strcpybuff(StatsBuffer[i].url_sav,"");
  377.           StatsBuffer[i].back=0;
  378.           StatsBuffer[i].size=0;
  379.           StatsBuffer[i].sizetot=0;
  380.         }
  381.       }
  382.       for(k=0;k<2;k++) {    // 0: lien en cours 1: autres liens
  383.         for(j=0;(j<3) && (index<NStatsBuffer);j++) {  // passe de prioritΘ
  384.           int _i;
  385.           for(_i=0+k;(_i< max(back_max*k,1) ) && (index<NStatsBuffer);_i++) {  // no lien
  386.             int i=(back_index+_i)%back_max;    // commencer par le "premier" (l'actuel)
  387.             if (back[i].status>=0) {     // signifie "lien actif"
  388.               // int ok=0;  // OPTI
  389.               ok=0;
  390.               switch(j) {
  391.               case 0:     // prioritaire
  392.                 if ((back[i].status>0) && (back[i].status<99)) {
  393.                   strcpybuff(StatsBuffer[index].state,"receive"); ok=1;
  394.                 }
  395.                 break;
  396.               case 1:
  397.                 if (back[i].status==99) {
  398.                   strcpybuff(StatsBuffer[index].state,"request"); ok=1;
  399.                 }
  400.                 else if (back[i].status==100) {
  401.                   strcpybuff(StatsBuffer[index].state,"connect"); ok=1;
  402.                 }
  403.                 else if (back[i].status==101) {
  404.                   strcpybuff(StatsBuffer[index].state,"search"); ok=1;
  405.                 }
  406.                 else if (back[i].status==1000) {    // ohh le beau ftp
  407.                   sprintf(StatsBuffer[index].state,"ftp: %s",back[i].info); ok=1;
  408.                 }
  409.                 break;
  410.               default:
  411.                 if (back[i].status==0) {  // prΩt
  412.                   if ((back[i].r.statuscode==200)) {
  413.                     strcpybuff(StatsBuffer[index].state,"ready"); ok=1;
  414.                   }
  415.                   else if ((back[i].r.statuscode>=100) && (back[i].r.statuscode<=599)) {
  416.                     char tempo[256]; tempo[0]='\0';
  417.                     infostatuscode(tempo,back[i].r.statuscode);
  418.                     strcpybuff(StatsBuffer[index].state,tempo); ok=1;
  419.                   }
  420.                   else {
  421.                     strcpybuff(StatsBuffer[index].state,"error"); ok=1;
  422.                   }
  423.                 }
  424.                 break;
  425.               }
  426.               
  427.               if (ok) {
  428.                 char s[HTS_URLMAXSIZE*2];
  429.                 //
  430.                 StatsBuffer[index].back=i;        // index pour + d'infos
  431.                 //
  432.                 s[0]='\0';
  433.                 strcpybuff(StatsBuffer[index].url_sav,back[i].url_sav);   // pour cancel
  434.                 if (strcmp(back[i].url_adr,"file://"))
  435.                   strcatbuff(s,back[i].url_adr);
  436.                 else
  437.                   strcatbuff(s,"localhost");
  438.                 if (back[i].url_fil[0]!='/')
  439.                   strcatbuff(s,"/");
  440.                 strcatbuff(s,back[i].url_fil);
  441.                 
  442.                 StatsBuffer[index].file[0]='\0';
  443.                 {
  444.                   char* a=strrchr(s,'/');
  445.                   if (a) {
  446.                     strncatbuff(StatsBuffer[index].file,a,200);
  447.                     *a='\0';
  448.                   }
  449.                 }
  450.                 
  451.                 if ((l=strlen(s))<MAX_LEN_INPROGRESS)
  452.                   strcpybuff(StatsBuffer[index].name,s);
  453.                 else {
  454.                   // couper
  455.                   StatsBuffer[index].name[0]='\0';
  456.                   strncatbuff(StatsBuffer[index].name,s,MAX_LEN_INPROGRESS/2-2);
  457.                   strcatbuff(StatsBuffer[index].name,"...");
  458.                   strcatbuff(StatsBuffer[index].name,s+l-MAX_LEN_INPROGRESS/2+2);
  459.                 }
  460.                                
  461.                 if (back[i].r.totalsize>0) {  // taille prΘdΘfinie
  462.                   StatsBuffer[index].sizetot=back[i].r.totalsize;
  463.                   StatsBuffer[index].size=back[i].r.size;
  464.                 } else {  // pas de taille prΘdΘfinie
  465.                   if (back[i].status==0) {  // prΩt
  466.                     StatsBuffer[index].sizetot=back[i].r.size;
  467.                     StatsBuffer[index].size=back[i].r.size;
  468.                   } else {
  469.                     StatsBuffer[index].sizetot=8192;
  470.                     StatsBuffer[index].size=(back[i].r.size % 8192);
  471.                   }
  472.                 }
  473.                 index++;
  474.               }
  475.             }
  476.           }
  477.         }
  478.       }
  479.  
  480.       /* LF */
  481.       printf("%s\n",VT_CLREOL);
  482.  
  483.       /* Display current job */
  484.       {
  485.         int parsing=0;
  486.         printf("Current job: ");
  487.         if (!(parsing=hts_is_parsing(-1)))
  488.           printf("receiving files");
  489.         else {
  490.           switch(hts_is_testing()) {
  491.           case 0:
  492.             printf("parsing HTML file (%d%%)",parsing);
  493.             break;
  494.           case 1:
  495.             printf("parsing HTML file: testing links (%d%%)",parsing);
  496.             break;
  497.           case 2:
  498.             printf("purging files");
  499.             break;
  500.           }
  501.         }
  502.         printf("%s\n",VT_CLREOL);
  503.       }
  504.       
  505.       /* Display background jobs */
  506.       {
  507.         int i;
  508.         for(i=0;i<NStatsBuffer;i++) {
  509.           if (strnotempty(StatsBuffer[i].state)) {
  510.             printf(VT_CLREOL" %s - \t%s%s \t%s / \t%s",
  511.               StatsBuffer[i].state,
  512.               StatsBuffer[i].name,
  513.               StatsBuffer[i].file,
  514.               int2bytes(StatsBuffer[i].size),
  515.               int2bytes(StatsBuffer[i].sizetot)
  516.               );
  517.           }
  518.           printf("%s\n",VT_CLREOL);
  519.         }
  520.       }
  521.  
  522.  
  523.     }
  524.  
  525.   }
  526.  
  527.  
  528.  
  529.   return 1;
  530. }
  531. char* __cdecl htsshow_query(char* question) {
  532.   static char s[12]=""; /* ok */
  533.   printf("%s\nPress <Y><Enter> to confirm, <N><Enter> to abort\n",question);
  534.   io_flush; linput(stdin,s,4);
  535.   return s;
  536. }
  537. char* __cdecl htsshow_query2(char* question) {
  538.   static char s[12]=""; /* ok */
  539.   printf("%s\nPress <Y><Enter> to confirm, <N><Enter> to abort\n",question);
  540.   io_flush; linput(stdin,s,4);
  541.   return s;
  542. }
  543. char* __cdecl htsshow_query3(char* question) {
  544.   static char line[256]; /* ok */
  545.   do {
  546.     io_flush; linput(stdin,line,206);
  547.   } while(!strnotempty(line));
  548.   printf("ok..\n");
  549.   return line;
  550. }
  551. int __cdecl htsshow_check(char* adr,char* fil,int status) {
  552.   return -1;
  553. }
  554. void __cdecl htsshow_pause(char* lockfile) {
  555.   while (fexist(lockfile)) {
  556.     Sleep(1000);
  557.   }
  558. }
  559. void __cdecl htsshow_filesave(char* file) {
  560. }
  561. int __cdecl htsshow_linkdetected(char* link) {
  562.   return 1;
  563. }
  564. int __cdecl htsshow_xfrstatus(lien_back* back) {
  565.   return 1;
  566. }
  567. int __cdecl htsshow_savename(char* adr_complete,char* fil_complete,char* referer_adr,char* referer_fil,char* save) {
  568.   return 1;
  569. }
  570.  
  571.  
  572. /* *** Various functions *** */
  573.  
  574.  
  575. int fexist(char* s) {
  576.   FILE* fp;
  577.   fp=fopen(s,"rb");
  578.   if (fp!=NULL) fclose(fp);
  579.   return (fp!=NULL);
  580.  
  581. int linput(FILE* fp,char* s,int max) {
  582.   int c;
  583.   int j=0;
  584.   do {
  585.     c=fgetc(fp);
  586.     if (c!=EOF) {
  587.       switch(c) {
  588.         case 13: break;  // sauter CR
  589.         case 10: c=-1; break;
  590.         case 9: case 12: break;  // sauter ces caractΦres
  591.         default: s[j++]=(char) c; break;
  592.       }
  593.     }
  594.   }  while((c!=-1) && (c!=EOF) && (j<(max-1)));
  595.   s[j]='\0';
  596.   return j;
  597. }
  598.  
  599. #endif
  600.